circle(width/2, height/2, 50)
fill_circle(width/2, height/2, 50, 'green')
loop 100
fill_circle(
random(0, width),
random(0, height),
random(10, 50),
random('color')
)
end
Syntactically straight-forward loops, versatile randomness.
step = min(width, height)/10;
loop 100
fill_circle(
random(1, 9)*step,
random(1, 9)*step,
random(5, step/2),
random('color')
)
end
Modern art with a few lines of code.